home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 4 / Apprentice-Release4.iso / Demos / AppMaker 2.0b3 / Demo AppMaker 1.5 / Demo AppMaker™ / Demo AppMaker™.rsrc / TmCT_404_zWindow.h < prev    next >
Encoding:
C/C++ Source or Header  |  1992-04-08  |  571 b   |  31 lines

  1. /* %filename% -- window class */
  2. /* Created %date% %time% by AppMaker */
  3.  
  4. #define _H_z%WindName% 
  5.  
  6. #include <CWindow.h>
  7.  
  8. class CBureaucrat;
  9. class CPane;
  10. class CPanorama;
  11. class CDirector;
  12. class C%appname%Data;
  13.  
  14. %for each item gen classDecl%
  15.  
  16. /*----------*/
  17. class Z%WindName% : public CWindow {
  18. public:
  19.     CPane            *itsMainPane;
  20.  
  21.     virtual void    IZ%WindName%%    %(CDirector        *aSupervisor);
  22.     %for each item gen zAuxiliaryMethod.decl%
  23.  
  24.     void     DoCommand        (long        theCommand);    // is override
  25.  
  26. protected:
  27.     /* Panes in this window: */
  28.     %for each item gen instance%
  29.  
  30. }; /* Z%WindName% */
  31.